* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.scrolled {
background-color: #140b0b;
}
body {
    font-family: Arial, sans-serif;
    background-color: #140b0b;
    color: #fff;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.review-container {
    height: 300px;
    position: relative;
    
    background-size: cover;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Darkness filter */
    z-index: 1;
}
.review-overlay {
    background-color: rgba(0, 0, 0, 0.5);
}

.review-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    padding: 20px;
}

.stars {
    margin: 10px 0;
}

.stars span {
    font-size: 20px;
    color: gold;
}

.author {
    margin-top: 10px;
    font-size: 16px;
    font-style: italic;
}
.recenzie {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px;

}

#feedback-form {
background-color: #1b1b1b;
padding: 20px 30px;
border-radius: 10px;
width: 350px;
margin-left: auto;
margin-right: auto;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}

#feedback-form h2 {
font-size: 24px;
margin-bottom: 20px;
text-align: center;
color: #f1f1f1;
}

#feedback-form input[type="text"],
#feedback-form textarea {
width: 100%;
padding: 10px;
margin: 10px 0;
border-radius: 5px;
border: none;
background-color: #333;
color: #fff;
font-size: 16px;
}

#feedback-form input[type="text"]::placeholder,
#feedback-form textarea::placeholder {
color: #aaa;
}

#feedback-form textarea {
height: 100px;
resize: none;
}

#feedback-form button {
width: 100%;
padding: 10px;
background-color:#cc0000;
border: none;
border-radius: 5px;
color: #fff;
font-size: 16px;
cursor: pointer;
transition: background-color 0.3s ease;
}

#feedback-form button:hover {
background-color: #990000;
}

.g-recaptcha {
    display: flex;
    justify-content: center; 
    padding: 10px; 
    transform: scale(0.95); 
    transform-origin: center; 
}

#message {
text-align: center;
margin-top: 20px;
color: #00ff00;
}

input:focus, textarea:focus, button:focus {
outline: none;
box-shadow: 0 0 8px #cc0e00;
}
section {
margin-top: 70px;
}
@media screen and (max-width: 1300px) {
.recenzie {

    grid-template-columns: repeat(3, 1fr);
  

}
    
}
@media screen and (max-width: 1000px) {
.review-container {
height: 200px;

}

}
@media screen and (max-width: 750px) {
.recenzie {

    grid-template-columns: repeat(2, 1fr);
  

}
    
}
@media screen and (max-width: 500px) {
.recenzie {

    grid-template-columns: repeat(1, 1fr);
  

}
    
}